SQL Table Value Constructor – SELECT Statement (Create a Table With Value Generated By My Self)


/** Create a Table With Value Generated By My Self **/
SELECT * FROM 
(VALUES 
    /** First Value, Second Value In A Row**/
    ('David', 25),
    ('Brown', 26),
    ('Alex', 22)

) /** First Column Name, Second Column Name**/
as E(FirstName, Age);
#SQL #Table Value Constructor #SELECT Statement






你可能感興趣的文章

筆記、[FE101] 前端基礎 各種裝飾

筆記、[FE101] 前端基礎 各種裝飾

使用 Google Colaboratory + Whisper AI 免費將錄音檔內容轉換成文字

使用 Google Colaboratory + Whisper AI 免費將錄音檔內容轉換成文字

VS Code - Golang Debug

VS Code - Golang Debug






留言討論